home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue46 / packages / FormInheritancePackage / InheritedFormU.dfm / InheritedFormU.txt
Encoding:
Text File  |  1999-04-22  |  608 b   |  25 lines

  1. inherited InheritedForm: TInheritedForm
  2.   Caption = 'Inherited Form'
  3.   Color = clAqua
  4.   PixelsPerInch = 96
  5.   TextHeight = 13
  6.   inherited Label1: TLabel
  7.     Left = 103
  8.     Width = 249
  9.     Height = 52
  10.     Caption = 
  11.       'This is a new (inherited) form used by the application when the ' +
  12.       'appropriate custom package has been loaded. The application know' +
  13.       's nothing about the new bits in this form.'
  14.   end
  15.   object BtnDoSomething: TButton [2]
  16.     Left = 190
  17.     Top = 96
  18.     Width = 75
  19.     Height = 25
  20.     Caption = '&Do Something'
  21.     TabOrder = 1
  22.     OnClick = BtnDoSomethingClick
  23.   end
  24. end
  25.